d41744f0f14524063e766a8f28cb923d53359f8f,event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java,TimedEventHandler,runInBackground,#,93

Before Change


            if ( info != null && this.running ) {
                try {
                    if ( info.nodePath == null ) {
                        this.processEvent(info.event);
                    } else {
                        this.session.refresh(true);
                        final Node eventNode = (Node) this.session.getItem(info.nodePath);

After Change


                                }
                                if ( lock != null ) {
                                    // if something went wrong, we reschedule
                                    if ( !this.processEvent(info.event, scheduleInfo) ) {
                                        try {
                                            this.queue.put(info);
                                        } catch (InterruptedException e) {